home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _B99A76E47FE145D9AB41AC3FB94D33E3 < prev    next >
Encoding:
Text File  |  2006-08-04  |  680 b   |  25 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for VerticalCylinder effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_VerticalCylinder():
  14.     return {
  15.         'GeneralSettings': {
  16.             'AutoActionMode': 0,
  17.             'ExecutionMode': 0
  18.             },
  19.         'Strength': 50,
  20.         'FillColor': (0, 0, 0)
  21.         }
  22.  
  23. def Do(Environment):
  24.     App.Do( Environment, 'VerticalCylinder', Preset_VerticalCylinder())
  25.